home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 7 / Amiga Format AFCD07 (Dec 1996, Issue 91).iso / serious / shareware / programming / aros / graphics / closefont.c next >
Encoding:
C/C++ Source or Header  |  1996-09-12  |  1.0 KB  |  57 lines

  1. /*
  2.     (C) 1995 AROS - The Amiga Replacement OS
  3.     $Id: closefont.c,v 1.4 1996/08/29 14:15:27 digulla Exp $    $Log
  4.     Desc:
  5.     Lang: english
  6. */
  7. #include "graphics_intern.h"
  8. #include <graphics/text.h>
  9.  
  10. void driver_CloseFont (struct TextFont *, struct GfxBase *);
  11.  
  12. /*****************************************************************************
  13.  
  14.     NAME */
  15.     #include <graphics/text.h>
  16.     #include <clib/graphics_protos.h>
  17.  
  18.     __AROS_LH1(void, CloseFont,
  19.  
  20. /*  SYNOPSIS */
  21.     __AROS_LHA(struct TextFont *, textFont, A1),
  22.  
  23. /*  LOCATION */
  24.     struct GfxBase *, GfxBase, 13, Graphics)
  25.  
  26. /*  FUNCTION
  27.  
  28.     INPUTS
  29.  
  30.     RESULT
  31.  
  32.     NOTES
  33.  
  34.     EXAMPLE
  35.  
  36.     BUGS
  37.  
  38.     SEE ALSO
  39.  
  40.     INTERNALS
  41.  
  42.     HISTORY
  43.     29-10-95    digulla automatically created from
  44.                 graphics_lib.fd and clib/graphics_protos.h
  45.  
  46. *****************************************************************************/
  47. {
  48.     __AROS_FUNC_INIT
  49.     __AROS_BASE_EXT_DECL(struct GfxBase *,GfxBase)
  50.  
  51.     textFont->tf_Accessors --;
  52.  
  53.     driver_CloseFont (textFont, GfxBase);
  54.  
  55.     __AROS_FUNC_EXIT
  56. } /* CloseFont */
  57.